home *** CD-ROM | disk | FTP | other *** search
/ Aminet 7 / Aminet 7 - August 1995.iso / Aminet / text / hyper / ADtoHT2_1.lha / Source.lha / MyLib.lha / mui / mui_createcustomclass.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-03-29  |  523 b   |  24 lines

  1. #ifdef __GNUC__
  2.  
  3. #ifndef __OPTIMIZE__
  4. #error Please compile this file with -O
  5. #else
  6.  
  7. #define MUI_CreateCustomClass InlinedMUI_CreateCustomClass
  8. #include <inline/muimaster.h>
  9. #undef MUI_CreateCustomClass
  10.  
  11. struct MUI_CustomClass *MUI_CreateCustomClass(struct Library *LibraryBase,
  12.                           const char *SuperName,
  13.                           struct MUI_CustomClass *SuperMCC,
  14.                           int Datasize,
  15.                           APTR Dispatcher)
  16.  
  17. {
  18.   return InlinedMUI_CreateCustomClass(LibraryBase,SuperName,SuperMCC,Datasize,Dispatcher);
  19. }
  20.  
  21. #endif
  22.  
  23. #endif
  24.